* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
     
}





/*///////////////Navbar///////////////*/




nav{
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: space-evenly;
    background:LightSkyBlue;

}

nav_subpage{
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: left;
    position: static;
    justify-content: space-evenly;
    background:LightSkyBlue;

}
 
.navbar-header{
                position: relative;
                width: 30%;


}

.nav-menu{
    background:LightSkyBlue;
    width: 70%;
    display: flex;
    justify-content: space-evenly;
}

.ngaran {
    
    display: flex;
    width: 292px;
    height: 44px;
    margin-left: 10px;
    margin-top: 10px;
    
}
.menu-icon{
    display: none;
    font-size: 40px;
}
.logo{
    font-size: 40px;
    margin: 10px 20px;
}
.nav-menu.open {
    top: 55px;

}

.list{
    list-style: none;
    height: 100%;
}

.link{
    color: white;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}

.link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -3px;
    background: white;
    transition: 0.4s;
}
.link:hover::before{
    width: 100%;
}

.btn-click {
    background: rgb(123, 238, 30);
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.btn-click:hover{
    background: yellowgreen;

}

.cta {
    background: green;
    height: 70px;
    width: 60px;
    padding: 5px;
}

.menu-cta {
    color: white;
    font-weight: bold;
}

/*//////content////////////*/

.banner{
    display: flex;
    height: 60vh;
}
.apat{
    width: 100%;
    height: 110%;
    padding: 25px;
}

.bn-right{
    width: 50%;
    margin: 20px;
}
.bn-left{
    width: 50%;
    text-align: center;
    margin: 20px;
}

.bn-left h1{
    color: black ;
    margin-top: 100px;
    text-transform: uppercase;

}
.paragraph{
    padding: 20px;
    line-height: 25px;
    font-size: 0.9rem;
}

section{
    padding: 2rem;
}
.heading-light{
     font-size: 30px;
     color: white;
     text-align: center;
     text-transform: uppercase;
     padding-bottom: 10px;

}

.sec-dark{
    background: LightSkyBlue;
    margin: 20px;
}
.p-light{
    color: white;
}

.heading-dark{
    color: black;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 10px;

}



footer {
    padding: 0;
    background: white;

}

.footer-container {
    display: flex;
}

.footer-text {
    width: 50%;
    padding: 20px;
}

.footer-icon
 {
     width: 50%;
     padding: 20px;
 }

 .footer-copy {
     text-align: center;
     color:white;
     background: LightSkyBlue;
     padding: 20px;
     margin: 40px 20px 0;
     margin: 0;
 }

 .icons {
     display: flex;


 }
 .icon {
     position: relative;
     width: 40px;
     height: 40px;
     margin: 20px 20px 20px 0;
     border: solid 1px LightSkyBlue;
     color:#E91E63;
     transition: 0.4s;
 }

 
 .icon i{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.icon:hover {
    background: white;
    color: rgb(76, 10, 255);


}
footer h1{

    color: black;
    text-transform: uppercase;
}

footer p {

    padding: 20px 0px !important;
}
   
 

.fas fa-bars{
    display: block; 
    
}
.icon{
    position: relative;
    top: 50%;
    
    transform: translate (-50%, -50%);
}








@media (max-width:770px), (orientation:portrait){
    nav{
        display: block;
        height: auto;
    }
    .navbar-header {
        height: 60px;
        width: 100% ;
        background: LightSkyBlue;
        z-index: 1;
        padding: 10px;
    }
    .nav-menu {
        position: absolute;
        flex-direction: column;
        height: auto;
        width: 100%;
        align-items: center;
        padding-bottom: 10px;
        top: -100vh;
        transition: 0.4s linear;

    }


    .nav-menu.open {
         top: 55px;
    }
    .list {
        line-height: 35px;
    }
      .logo {
          position: absolute;
          top: 0;
          left: 0;
          margin: 0;
          padding: 0;
          color: LightSkyBlue;

      }
      .menu-icon{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        color: white;
        cursor: pointer;
         ;
       
        

        }

        .logo i,.menu-icon i{
            margin: 10px 30px;


        }

      .banner {
          flex-direction: column-reverse;
          height: auto;

      }

      .bn-left {
          width: 100%;
          margin: 0;
      }

      .bn-left h1 {
          margin-top: 15px;
      }

      .bn-right {
          width: 100%;
          height: 100%;
          margin: 40px 0 0 0;

      }
      .paragraph{
          padding: 0px;
          font-size: 0.8rem;

      }
      .icons {
          display: flex;
      }
      .icon{
          position: relative;
          width: 40px;
          height: 40px;
          margin: 20px 20px 20px 0;
          border: solid 2px black;
          color: #E91E63
      }
      .footer-container {
          flex-direction: column;

      }
      .footer-text {
          padding: 10px;
          width: 100%;
      }
      .footer-icon {
          padding: 10px;
          width: 100%;

      }

    
